@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #c67ed4;
  color: white;
}

header {
  background-color: #58375f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  opacity: 80%;

  position: sticky;
  top: 0;
  z-index: 1000;
}

header img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

header a {
  color: white;
  text-decoration: none;
}

header .title {
  font-size: 2.5rem;
}

header ul {
  list-style: none;
  display: flex;
  gap: 30px;
  font-size: 1.2rem;
}

header ul li {
  transition: transform 0.2s ease;
}

header ul li:hover {
  transform: translateY(-3px);
}

section {
  padding: 90px 10%;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

section p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 700px;
}

#about {
  background-color: #c67ed4;
  min-height: 350px;
}

#music {
  background-color: #82548b;
  text-align: center;
}

#music p {
  margin: 0 auto;
}

#contact {
  background-color: #58375f;
  text-align: center;
}

#contact p {
  margin: 0 auto;
}

#contact a {
  color: white;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

#contact a:hover {
  opacity: 0.7;
}

footer {
  background-color: #3d2742;
  color: white;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  header {
    padding: 15px 5%;
  }

  header .title {
    font-size: 1.8rem;
  }

  header img {
    width: 50px;
    height: 50px;
  }

  header ul {
    gap: 15px;
    font-size: 1rem;
  }
}
